home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / protect-your-privacy / p.g.p. / pgpsendmail / source / pgpsendmail.h < prev    next >
C/C++ Source or Header  |  1996-02-26  |  2KB  |  51 lines

  1. /*
  2.  *      $Filename: pgpsendmail.h $
  3.  *      $Revision$
  4.  *      $Date$
  5.  *
  6.  *      Copyright (C) 1993 by Peter Simons <simons@peti.GUN.de>
  7.  *
  8.  *      This program is free software; you can redistribute it and/or
  9.  *      modify it under the terms of the GNU General Public License as
  10.  *      published by the Free Software Foundation; either version 2 of
  11.  *      the License, or (at your option) any later version.
  12.  *
  13.  *      This program is distributed in the hope that it will be useful,
  14.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  *      General Public License for more details.
  17.  *
  18.  *      You should have received a copy of the GNU General Public License
  19.  *      along with this program; if not, write to the Free Software
  20.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  *      $Id$
  23.  *
  24.  */
  25.  
  26.  
  27. /**************************************************************************
  28.  *                                                                        *
  29.  * Section: Macros, Definitions, Includes, Structures                     *
  30.  *                                                                        *
  31.  **************************************************************************/
  32.  
  33. /************************************* Includes ***********/
  34. #include <libraries/netsupport.h>
  35. #include <dos/dos.h>
  36. #include <proto/exec.h>
  37. #include <proto/dos.h>
  38. #include <proto/netsupport.h>
  39.  
  40. /************************************* Prototypes *********/
  41.  
  42. /************************************* Defines ************/
  43. #define MAX_CMDLINELEN  513             /* max. size of a buffer holding command lines */
  44. #define MY_BUFLEN       4096            /* size of my internal buffers */
  45. #define MAX_RECEIPIENTS 64              /* max. number of receipients */
  46.  
  47. #define CONFIRMENCRYPTION "ConfirmEncryption"
  48.  
  49. #define FindConfig(name) GetConfig(NULL, name, NULL, name)
  50.  
  51.